home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 503 b | 29 lines | [TEXT/MPS ] |
- ;
- ; File: kaboom.a
- ;
- ; Assembly code (jump table) for a simple printing extension.
- ;
- ; Dave Hersey
- ; Apple Developer Technical Support
- ;
- ; 2/01/93 - dmh - Created.
- ; 4/26/93 - dmh - Modified to work around b1 shutdown bug.
- ; 9/07/93 - dmh - Updated for b2.
- ; 12/18/93 - dmh - Updated for b3.
- ;
-
- EXPORT EntryPoint ; Our main entry point.
- IMPORT MyStartJob
- IMPORT MyFinishJob
-
- EntryPoint PROC
-
- DC.L 0 ; Reserved for owner count.
-
- JMP MyStartJob
- JMP MyFinishJob
-
- ENDPROC
-
- END
-